Retrieve a paginated list of AI agents with minimal information including ID, name, and deployment status. This endpoint provides a lightweight way to browse available agents without fetching full configuration details.
Query Parameters
Page number (starting from 1)
Items per page (maximum 50)
Response
Returns a paginated list of agents with detailed information:
Array of agent objects Unique identifier for the agent (UUID format)
Display name of the agent
Emoji icon representing the agent
Current deployment status: ACTIVE, INACTIVE
Organization UUID this agent belongs to
Deployment method: serverless, container, or null
ISO timestamp of when the agent was created
LLM provider: openai, anthropic, etc.
Specific model version (e.g., gpt-4o, gpt-4.1)
Agent framework used (e.g., agno)
Total number of agents across all pages
Total number of pages available
Example Request
curl -X GET -H "x-api-key: YOUR_API_KEY" \
"https://api.xpander.ai/v1/agents?page=1&per_page=2"
Example Response
{
"items" : [
{
"id" : "0045cf07-8af6-4c69-8d13-0a13c631a5d0" ,
"name" : "DevOps AI Agent" ,
"icon" : "🚀" ,
"status" : "ACTIVE" ,
"organization_id" : "91fbe9bc-35b3-41e8-b59d-922fb5a0f031" ,
"deployment_type" : "container" ,
"created_at" : "2025-08-22T01:45:30.341088Z" ,
"instructions" : {
"role" : [
"users can't access your files so upload the files and use markdwon when comment with public link. " ,
"Don't stop until complete all tools are valid." ,
"generate_diagram can fail , retry with different code "
],
"goal" : [],
"general" : "AI DevOps"
},
"model_provider" : "openai" ,
"llm_api_base" : null ,
"model_name" : "gpt-4.1" ,
"framework" : "agno" ,
"using_nemo" : false ,
"is_coordinate_mode" : false
},
{
"id" : "11cf5b70-7743-4d5f-a739-3f94fef8ec0f" ,
"name" : "Test Agent - DELETE ME" ,
"icon" : "🚀" ,
"status" : "ACTIVE" ,
"organization_id" : "91fbe9bc-35b3-41e8-b59d-922fb5a0f031" ,
"deployment_type" : "serverless" ,
"created_at" : "2025-11-06T15:41:14.673977Z" ,
"instructions" : {
"role" : [],
"goal" : [],
"general" : ""
},
"model_provider" : "openai" ,
"llm_api_base" : null ,
"model_name" : "gpt-4.1" ,
"framework" : "agno" ,
"using_nemo" : false ,
"is_coordinate_mode" : false
}
],
"total" : 19 ,
"page" : 1 ,
"per_page" : 2 ,
"total_pages" : 10
}
API Key for authentication
Page number (starting from 1)
Required range: x >= 1
Required range: 1 <= x <= 50
items
MinimalAIAgent · object[]
required